Gatsby Default StarterGatsby logo

#WindowsServer

We write scripts for automation in the Windows Server.

Usually with Batch or Powershell.

We used this for Batch:

REM we show minimum to the screen
@echo off

REM we clean the screen
cls

REM we delete existing network readers
net use * /delete /yes

REM we create the reader K: for the Commun/Shared folder
REM net use k: \\srv01\commun

net use x: \\srvad01\IT_Commun to create a shared drive in the network domain with all PCs.